9481e44ae22733c9361e1ae6a8c6d76bde2ed950,Mage/src/mage/abilities/effects/common/continious/ExchangeControlTargetEffect.java,ExchangeControlTargetEffect,apply,#Game#Ability#,116

Before Change


            if (withSource) {
                Permanent permanent = game.getPermanent(source.getSourceId());
                UUID controllerId = this.lockedControllers.get(permanent.getId());
                if (controllerId != null) {
                    permanent.changeControllerId(controllerId, game);
                }
            }
            return true;

After Change


            }
            if (withSource) {
                Permanent permanent = game.getPermanent(source.getSourceId());
                if (permanent != null) {
                    UUID controllerId = this.lockedControllers.get(permanent.getId());
                    if (controllerId != null) {
                        if (permanent.changeControllerId(controllerId, game)) {
                            ++countChangeControl;
                        }
                    }